home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Tools - Objects / MacApp / MacApp CD Release / MacApp 2.0.1 (Many Libraries) / Libraries / PrivateInterfaces / UPrinting.p < prev    next >
Encoding:
Text File  |  1990-10-25  |  841 b   |  41 lines  |  [TEXT/MPS ]

  1. {[a-,body+,h-,o=100,r+,rec+,t=4,u+,#+,j=20/57/1$,n+]}
  2. { UPrinting.p }
  3. { Copyright © 1984-1990  Apple Computer, Inc.  All rights reserved. }
  4.  
  5. {$IFC UNDEFINED UsingIncludes}
  6. {$SETC UsingIncludes := FALSE}
  7. {$ENDC}
  8.  
  9. UNIT UPrinting;
  10.  
  11.     INTERFACE
  12.  
  13.         USES
  14. {$SETC __UPrinting__ := TRUE}
  15.             { • MacApp }
  16.             {$U $$Shell(MAPInterfaces)UMacApp} UMacApp,
  17.  
  18.             { • Implementation use }
  19.             {$U $$Shell(MAPInterfaces)ULoMem} ULoMem,
  20.  
  21.             {$IFC NOT qNeedsROM128K}
  22.             Printing,
  23.             {$ELSEC}
  24.             PrintTraps,
  25.             {$ENDC}
  26.             ToolUtils, Packages, Fonts, Errors, Resources;
  27.  
  28. {$SETC __UPrinting__ := FALSE}
  29.             { • Include the public interface }
  30.             {$SETC _UPrintingIncludes := UsingIncludes}
  31.             {$SETC UsingIncludes := TRUE}
  32.             {$I+}
  33.             {$I $$Shell(MAPInterfaces)UPrinting.p}
  34.             {$SETC UsingIncludes := _UPrintingIncludes}
  35.  
  36.     IMPLEMENTATION
  37.  
  38.         {$I UPrinting.inc1.p}
  39.  
  40. END.
  41.